home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1995.rar / 1995 / JUL / MC9507 / calc1.dpr < prev    next >
Text File  |  1995-02-06  |  169b  |  13 lines

  1. program Calc1;
  2.  
  3. uses
  4.   Forms,
  5.   Calc_f in 'CALC_F.PAS' {CalcForm};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.CreateForm(TCalcForm, CalcForm);
  11.   Application.Run;
  12. end.
  13.